Conditions | 4 |
Paths | 4 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /* globals Ziggurat */ |
||
22 | this.getHTML = function(resource) { |
||
23 | let html = data.html[resource]; |
||
24 | if (typeof html === 'undefined' && data.resources[resource]) { |
||
25 | html = data.resources[resource].html; |
||
26 | } |
||
27 | if (typeof html === 'undefined') { |
||
28 | return resource; |
||
29 | } |
||
30 | return html; |
||
31 | }; |
||
32 | |||
71 |